home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / PRGMANIA / VERSION1.5 / MAKEFILE < prev    next >
Encoding:
Text File  |  1996-12-27  |  1.4 KB  |  56 lines

  1. OBJ = gemform.o gemmenu.o gempopup.o gemtext.o gemuser.o userdefs.o gemhelp.o gemslid.o gemalert.o gemsyst.o gemutil.o
  2. CFLAGS = -O -f
  3.  
  4. windgem.a: $(OBJ) windgem.h winproto.h
  5.     ar -r windgem.a $(OBJ)
  6.     cp windgem.a i:\usr\lib\sozobonx
  7.     cp windgem.h i:\usr\include
  8.  
  9. gemsyst.o: gemsyst.c user.c windgem.h winproto.h
  10.     cc -c gemsyst.c $(CFLAGS)
  11.  
  12. gemform.o: gemform.c windgem.h winproto.h
  13.     cc -c gemform.c $(CFLAGS)
  14.  
  15. gemmenu.o: gemmenu.c windgem.h winproto.h
  16.     cc -c gemmenu.c $(CFLAGS)
  17.  
  18. gemtext.o: gemtext.c windgem.h winproto.h
  19.     cc -c gemtext.c $(CFLAGS)
  20.  
  21. gemuser.o: gemuser.c windgem.h winproto.h
  22.     cc -c gemuser.c $(CFLAGS)
  23.     
  24. gemutil.o: gemutil.c windgem.h winproto.h
  25.     cc -c gemutil.c $(CFLAGS)
  26.  
  27. gempopup.o: gempopup.c windgem.h winproto.h
  28.     cc -c gempopup.c $(CFLAGS)
  29.  
  30. userdefs.o: userdefs.c windgem.h winproto.h
  31.     cc -c userdefs.c $(CFLAGS)
  32.  
  33. gemhelp.o: gemhelp.c windgem.h winproto.h
  34.     cc -c gemhelp.c $(CFLAGS)
  35.     
  36. gemslid.o: gemslid.c windgem.h winproto.h
  37.     cc -c gemslid.c $(CFLAGS)
  38.  
  39. gemalert.o: gemalert.c windgem.h winproto.h
  40.     cc -c gemalert.c $(CFLAGS)
  41.  
  42. testst: testst.o testst.h
  43.     cc -otestst.app -O -V -f testst.o windgem xaesfast xvdifast -lpml -lextra
  44.  
  45. test: test.o audio.o test.h audio.h
  46.     cc -otest.app -O -V -f test.o audio.o windgem xaesfast xvdifast -lpml -lextra
  47.  
  48. audio.o: audio.c audio.h
  49.     cc -c audio.c -O -V
  50.  
  51. test.o: test.c test.h
  52.     cc -c test.c -O -V
  53.  
  54. testst.o: testst.c testst.h
  55.     cc -c testst.c -O -V
  56.